home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / macosx_SecUpd20040126.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  88 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5.  
  6. if ( ! defined_func("bn_random") ) exit(0);
  7. if(description)
  8. {
  9.  script_id(12517);
  10.  script_bugtraq_id(9069);
  11.  script_version ("$Revision: 1.2 $");
  12.  name["english"] = "Security Update 2004-01-26";
  13.  
  14.  script_name(english:name["english"]);
  15.  
  16.  desc["english"] = "
  17. The remote host is missing Security Update 2004-01-26.
  18.  
  19. This security update includes the following components :
  20.  Apache 1.3
  21.  Classic
  22.  Mail
  23.  Safari
  24.  Windows File Sharing
  25.  
  26. For MacOS 10.1.5, it only includes the following :
  27.  
  28.  Mail
  29.  
  30.  
  31.  
  32. This update contains various fixes which may allow an attacker to execute
  33. arbitrary code on the remote host.
  34.  
  35. Solution : 
  36. http://www.apple.com/downloads/macosx/apple/securityupdate_2004-01-26_(10_3_2_Client).html
  37. http://www.apple.com/downloads/macosx/apple/securityupdate_2004-01-26_(10_2_8_Server).html
  38. http://www.apple.com/downloads/macosx/apple/securityupdate_2004-01-26_(10_1_5).html
  39.                
  40. Risk factor : High";
  41.  
  42.  
  43.  script_description(english:desc["english"]);
  44.  
  45.  summary["english"] = "Check for Security Update 2004-01-26";
  46.  script_summary(english:summary["english"]);
  47.  
  48.  script_category(ACT_GATHER_INFO);
  49.  
  50.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  51.  family["english"] = "MacOS X Local Security Checks";
  52.  script_family(english:family["english"]);
  53.  
  54.  script_dependencies("ssh_get_info.nasl");
  55.  script_require_keys("Host/MacOSX/packages");
  56.  exit(0);
  57. }
  58.  
  59.  
  60. packages = get_kb_item("Host/MacOSX/packages");
  61. if ( ! packages ) exit(0);
  62.  
  63. uname = get_kb_item("Host/uname");
  64. # Security Update 2004-05-03 actually includes this update for MacOS X 10.2.8 Client
  65. if ( egrep(pattern:"Darwin.* 6\.8\.", string:uname) )
  66. {
  67.  if ( egrep(pattern:"^SecUpd2004-05-03", string:packages) ) exit(0);
  68. }
  69.  
  70. # MacOS X 10.1.5, 10.2.8 and 10.3.2 only
  71. if ( egrep(pattern:"Darwin.* (5\.5\.|6\.8\.|7\.2\.)", string:uname) )
  72. {
  73.   if ( ! egrep(pattern:"^SecurityUpd2004-01-26", string:packages) ) { 
  74.         security_hole(0);
  75.         exit(0);
  76.         }
  77.  else  {
  78.         set_kb_item(name:"CAN-2004-0174", value:TRUE);
  79.         set_kb_item(name:"CAN-2003-0020", value:TRUE);
  80.         }
  81. }
  82.  
  83. if ( egrep(pattern:"Darwin.*", string:uname) )
  84. {
  85.         set_kb_item(name:"CAN-2004-0174", value:TRUE);
  86.         set_kb_item(name:"CAN-2003-0020", value:TRUE);
  87. }
  88.